home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Informant Complete 1995 - 2000
/
Delphi Informant Complete 1995 to 2000.iso
/
Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar
/
1998
/
Feb
/
di9802kw
/
WPLoad.dpr
< prev
next >
Wrap
Text File
|
1997-08-21
|
338b
|
20 lines
program WPLoad;
{
Allow JPEG and GIF files to be loaded into the WebPics database.
Written by Keith Wood, 21 August, 1997.
}
uses
Forms,
WPLoad1 in 'WPLoad1.pas' {frmLoadWebPics};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TfrmLoadWebPics, frmLoadWebPics);
Application.Run;
end.